home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 1997-1998 - Modelworks Software
-
- /**
- @Tool: insert Xmp~wraps the current selection with
- <XMP> ... </XMP> tags.
- @EndTool:
- @Summary: insert Xmp~wraps selection with the Xmp tag
- */
-
- function DoCommand()
- {
- var editor = getActiveEditor();
- if (editor)
- {
- var selection = editor.getSelection();
- var upperCaseHtmlTags = getMapFileValue("Preferences", "Upper Case HTML Tags", true);
- if (upperCaseHtmlTags)
- {
- editor.insert(selection.endLineIndex, selection.endCharIndex, "</XMP>");
- editor.insert(selection.startLineIndex, selection.startCharIndex, "<XMP>");
- }
- else
- {
- editor.insert(selection.endLineIndex, selection.endCharIndex, "</xmp>");
- editor.insert(selection.startLineIndex, selection.startCharIndex, "<xmp>");
- }
- editor.setActive("Insert XMP Tag");
- }
- }
-
- !!/Script
-